
/* Add CSS styles for the scrolling animation */
#scrolling-image {
    position: fixed;
    bottom: 10px;
    left: 0;
    width: 100%;
    animation: scrollImage 9s linear infinite;
}

@keyframes scrollImage {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}